home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / txtedtrs / gnome96 / gnome.tut < prev    next >
Internet Message Format  |  1995-05-02  |  26KB

  1. From koreth@ssyx.ucsc.edu Thu May 26 13:27:45 1988
  2. Path: caen!caen.engin.umich.edu!mailrus!ames!pasteur!agate!saturn!ssyx!koreth
  3. From: koreth@ssyx.ucsc.edu (Steven Grimm)
  4. Newsgroups: comp.binaries.atari.st
  5. Subject: v01i075: GNOME -- miniature EMACS clone  part02/04
  6. Keywords: arc, uuencode
  7. Message-ID: <3450@saturn.ucsc.edu>
  8. Date: 26 May 88 17:27:45 GMT
  9. Sender: usenet@saturn.ucsc.edu
  10. Lines: 588
  11. Approved: koreth@ssyx.ucsc.edu
  12.  
  13. Submitted-by: braner@tcgould.tn.cornell.edu (Moshe Braner)
  14. Posting-number: Volume 1, Issue 75
  15. Archive-name: gnome/part02
  16.  
  17. [This should be called "gnome.tut". -sg]
  18.  
  19. You are looking at the GNOME tutorial.  Comments on this document
  20. may be refered to Moshe Braner <braner@tcgould.tn.cornell.edu>.
  21.  
  22. GNOME is a text editor based on the original "microEMACS" by Dave Conroy.
  23. The name "GNOME" (Generally Not the Original Micro Emacs) is meant to
  24. distinguish this version from the numerous other versions of "microEMACS"
  25. that exist now, and to comply with Richard Stallman's request that the
  26. name "EMACS" be reserved for his original full-screen editor.
  27.  
  28. I use GNOME daily for all of my work, including program editing, some data
  29. files, shell scripts, letters, and word processing (in combination with
  30. YAFIYGI ("you asked for it you got it") style typesetting software, such as
  31. TeX or troff).  Its strongest advantage is that I can use it on every
  32. system I need to work on.  The source code is written purely in C.  It does
  33. not support GRAPHICAL windows (has text-only output) but it supports the
  34. editing of multiple files in multiple windows.  The edited files must
  35. completely reside in RAM, but the editor can use all available RAM.
  36.  
  37.  
  38. [Press Control-V to see the next screen]
  39.  
  40.  
  41. The philosophy behind GNOME is:
  42.  
  43.     - keep it SMALL (easy on system resources) and SIMPLE (easy
  44.         on the user).
  45.  
  46.     - make it a powerful PROGRAMMING editor,
  47.         but don't make it do EVERYTHING.
  48.  
  49.     - retain REDUNDANCY in command invocations to please many
  50.         and reduce mistakes.
  51.  
  52.     - include built-in instant HELP.
  53.  
  54.     - make it PORTABLE but use each system's strengths.
  55.  
  56.     - use FUNCTION KEYS as far as possible.
  57.  
  58. [Press Control-V to see the next screen --- hope you remember it by now]
  59.  
  60.  
  61. The nice features of my version include:
  62.  
  63. *    The function-key support means little use of control-keys is necessary.
  64.     (The standard control-key command invocations are retained, though.)
  65.  
  66. *    Horizontal scrolling for long lines (up to 255 chars).
  67.  
  68. *    All parameter entry requests (e.g., search patterns, file names,
  69.     buffer names...) have intelligent defaults through which one
  70.     can scroll with up-down arrows.  Each can be screen-edited with
  71.     the usual keys (left-right arrows, delete, backspace, etc.).
  72.     This makes for very quick respones with minimal typing.
  73.  
  74. *    Command line option (default ON in UNIX version) to save all keystrokes
  75.     in a file (flushed every 256 keystrokes).  The file pathname is taken
  76.     from an environment variable.  This is to recover work after a system
  77.     crash.
  78.  
  79. *    Search patterns can include a '.' wildcard (fits any char), a
  80.     "whitespace" wildcard (^W, fits any amount of whitespace, including
  81.     none), and '!' that means the next char can be anything BUT what
  82.     is in the search pattern.
  83.  
  84. *    8-bit extended ASCII supported (in ST and MS-DOS versions): preceding
  85.     a key with Alt-A sets the 8-th bit.  Such chars are displayed in the
  86.     extended system font.  In disk files, 8-bit data are read and written
  87.     correctly.  The help facility includes a built-in table of these chars.
  88.  
  89. *    The MS-DOS version uses DIRECT screen output (courtesy of Turbo C 1.5),
  90.     with a command-line option to force BIOS output in non-100% compatible
  91.     machines.  The latter is fast, the first is even faster.
  92.  
  93. *    Word wrap and paragraph reformatting.  Margins can be set from
  94.     the command line or inside the editor.
  95.  
  96. *    The number of rows and columns to use is settable from the command
  97.     line.  Useful for slow over-the-modem use and with windowing terminals.
  98.  
  99. *    In ST and MS-DOS versions: low-level binary block file I/O, MUCH faster
  100.     than the original microEMACS.
  101.  
  102. *    In MS-DOS: escape to COMMAND.COM for a shell or for one command.
  103.     In the latter case, the default-entry facilities create a pseudo-
  104.     shell with screen-editing of previous commands, intact across
  105.     separate accesses to this command (Alt-Z).
  106.  
  107. *    Search for matching brackets, recognising nested (), [], and {}.
  108.  
  109. And so on.
  110.  
  111.  
  112. GNOME commands generally involve the CONTROL key (sometimes labelled CTRL or 
  113. CTL) or the META key (generally labelled ESCAPE).  Rather than write out META 
  114. or CONTROL each time we want you to prefix a character, we'll use the following
  115. abbreviations:
  116.  
  117.    ^<chr>   means hold the CONTROL key while typing the character <chr>
  118.             Thus, ^F would be: hold the CONTROL key and type F.
  119.  
  120.    <Esc> <chr>  means type the ESCAPE key and release it, then type the 
  121.               character <chr>.  The <chr> can be upper or lower case 
  122.               and it will have the same meaning.
  123.  
  124.         (<Esc> is abbreviated E- in the help screens)
  125.  
  126. Important note: if you must exit at some point, type ^C.  
  127.  
  128. Important note:  On microcomputers, function keys are used for command entry
  129. whenever possible.  This tutorial only mentions the Control and Meta
  130. commands, which are also retained in the microcomputer versions.  Check out
  131. the built-in help in your system for function key usage.
  132.  
  133. This tutorial attempts to help you "learn by doing".  The characters ">>" 
  134. at the left margin of your screen indicate directions for you to try using 
  135. a command.  For instance:
  136.  
  137. >>  Now type ^V (View next screen) to move to the next screen.
  138.     (go ahead, do it by depressing the control key and V together).
  139.  
  140. Note that there is an overlap when going from screen to screen; this
  141. provides some continuity when moving through the file.
  142.  
  143. The first thing that you need to know is how to move around from place to 
  144. place in the file.  You already know how to move forward a screen, with ^V.  
  145. To move backwards a screen, type <Esc> V.
  146.  
  147. >>  Try typing <Esc> V and then ^V to move back and forth a few times.
  148.  
  149. >>  Now try pressing <Esc> <Esc>.  This will enter the built-in help facility.
  150.     Then press 'C' to display all the cursor-moving commands.
  151.     The following section gives more details.
  152.  
  153.  
  154. BASIC CURSOR CONTROL
  155. --------------------
  156.  
  157. Getting from screenful to screenful is useful, but how do you reposition 
  158. yourself within a given screen to a specific place?  There are several ways 
  159. you can do this.  One way (not the best, but the most basic) is to use the 
  160. commands previous, backward, forward and next.  As you can imagine these 
  161. commands (which are given to GNOME as ^P, ^B, ^F, and ^N  respectively) move 
  162. the cursor from where it currently is to a new place in the given direction.  
  163. Here, in a more graphical form are the commands:
  164.  
  165.                           Previous line, ^P
  166.                                   :
  167.                                   :
  168.    Backward, ^B .... Current cursor position .... Forward, ^F
  169.                                   :
  170.                                   :
  171.                           Next line, ^N
  172.  
  173. You'll probably find it easy to think of these by letter.  P for
  174. previous, N for next, B for backward and F for forward.  These are
  175. the basic cursor positioning commands and you'll be using them ALL
  176. the time so it would be of great benefit if you learn them now.
  177.  
  178. >> Do a few ^N's to bring the cursor down to this line.
  179.  
  180. >> Move into the line with ^F's and then up with several ^P's.
  181.    See what ^P does when the cursor is in the middle of the line.
  182.  
  183. >> If your keyboard has arrow keys, try them.  They might work!
  184.  
  185. On Unix, lines are separated by a single Linefeed character, which is what
  186. Unix calls a Newline.  On MS-DOS lines are separated by a CR-LF pair.  On
  187. either system, GNOME will correctly read in either kind of file, and, if
  188. asked to write the file, write it with the line separators standard on that
  189. system.
  190.  
  191. >> Try to ^B at the beginning of a line.  Do a few more ^B's.
  192.    Then do ^F's back to the end of the line and beyond.
  193.  
  194. When you go off the top or bottom of the screen, the text beyond
  195. the edge is shifted onto the screen so that your instructions can
  196. be carried out while keeping the cursor on the screen.
  197.  
  198. >> Try to move the cursor off the bottom of the screen with ^N and
  199.    see what happens.
  200.  
  201. If moving by characters is too slow, you can move by words.  <Esc> F
  202. (Meta-F) moves forward a word and <Esc> B moves back a word.
  203.  
  204. >> Type a few <Esc> F's and <Esc> B's.  Intersperse them with ^F's and ^B's.
  205.  
  206. Notice the parallel between ^F and ^B on the one hand, and <Esc> F and
  207. <Esc> B on the other hand.  Very often Meta characters are used for
  208. operations related to English text whereas Control characters operate on
  209. the basic textual units that are independent of what you are editing
  210. (characters, lines, etc).  For example, <Esc> P and <Esc> N move up and
  211. down by paragraphs.
  212.  
  213. >> Try a couple of <Esc> P's, and then a couple of <Esc> N's.
  214.  
  215. Now try ^A and ^E: they move to the beginning and the end of a line.
  216. See how repeated ^A's or ^E's do nothing.
  217.  
  218. Two other simple cursor motion commands are <Esc> < (Meta Less-than),
  219. which moves to the beginning of the file, and <Esc> > (Meta Greater-than),
  220. which moves to the end of the file.  You probably don't need to try
  221. them, since finding this spot again will be boring.  If you need the
  222. shift key to type a "<", then you must also use the shift key to type
  223. <Esc> <.  Otherwise, you would be typing <Esc> , .
  224.  
  225. The location of the cursor within the text is also called "point".  To 
  226. paraphrase, the cursor shows on the screen where point is located in
  227. the text.
  228.  
  229. Like most other commands in GNOME, these commands can be given
  230. arguments which cause them to be executed repeatedly.  The way you
  231. give a command a repeat count is by typing META and then the digits
  232. before you type the command.  (Remember META is usually called ESCAPE)
  233.  
  234. For instance, META 8 ^F moves forward eight characters.
  235.  
  236. >> Try giving a suitable argument to ^N or ^P to come as close
  237.    as you can to this line in one jump.
  238.  
  239. This also applies to the screen moving commands, ^V and <Esc> V.  When
  240. given an argument, they scroll the screen up or down by that many
  241. screenfuls.  As a special case, typing just ^U is equivalent to <Esc> 4.
  242.  
  243. >> Try typing <Esc> 3 ^V now.
  244.  
  245.  
  246. QUITTING FROM COMMANDS
  247. ----------------------
  248.  
  249. The character in GNOME used to quit out of all commands which request
  250. input is ^G.  For example, you can use ^G to discard a numeric argument
  251. or the beginning of a command that you don't want to finish.
  252. (You can also use the F2 key on IBM-PC compatibles, and the UNDO key
  253. on the Atari ST.)  In some situations ^C and/or <Esc> are additional
  254. back-out keys.
  255.  
  256. >> Type <Esc> 100 to make a numeric arg of 100, then type ^G.
  257.    Now type ^F.  How many characters does it move?
  258.    If you have typed an <Esc> by mistake, you can get rid of it
  259.    with a ^G.
  260.  
  261.  
  262. INSERTING AND DELETING
  263. ----------------------
  264.  
  265. If you want to type text, just do it.  Characters which you can see, such 
  266. as A, 7, *, etc. are taken by GNOME as text and are immediately inserted.  
  267. Type <Return> (the carriage-return key) to insert a line separator.
  268.  
  269. You can delete the last character you typed by typing ^H.  On some
  270. keyboards, there is a dedicated key for creating a ^H.  If so, it is
  271. usually labeled as either <Backspace> or "<--".  <Delete> is a key on the
  272. keyboard, which may be labeled "Rubout" instead of "Delete" on some
  273. terminals.  <Delete> deletes the character directly "under" the current
  274. cursor position.  A ^D has the same effect.
  275.  
  276. >> Do this now, type a few characters and then delete them by typing
  277.    <Backspace> a few times.  Don't worry about this file being changed,
  278.    as long as you do not press ^Z.
  279.  
  280. >> Now start typing text until you reach the right margin, and keep
  281.    typing.  When a line of text gets too big for one line on the
  282.    screen, the line of text is "continued" off the edge of the screen.
  283.    GNOME scrolls the screen over so you can see what you are editing.
  284.    The '$' at the left or right edge of the screen indicates 
  285.    that the current line extends off in that direction.  
  286.  
  287. >> The following line actually goes off the edge.  Trying typing enough ^F's
  288.    so that you move off the right hand end of this line.  This is a long line.  Note the "$"s at each edge.  Keep typing ^F's and watch where GNOME decides to scroll the line.  Now, type ^B's until GNOME decides to scroll the line again.
  289.  
  290. >> Use ^D's or <Delete>s to delete the text until the text line fits on 
  291.    one screen line again.  The continuation "$" will go away.
  292.  
  293. >> Move the cursor to the beginning of a line and type <Backspace> (or ^H).
  294.    This deletes the line separator before the line and merges the line onto
  295.    the previous line.  The resulting line may be too long to fit, in which
  296.    case it has a continuation indication.
  297.  
  298. >> Type <Return> to insert the separator again.
  299.  
  300. GNOME has an internal limit of 255 characters on line lengths.  If you try
  301. to surpass this limit, GNOME will give you an error message.
  302.  
  303. Remember that most GNOME commands can be given a repeat count;  Note
  304. that this includes characters which insert themselves.
  305.  
  306. >>  Try that now -- type META 8 * and see what happens.
  307.  
  308. If you want to create a blank line in-between two lines, move to the
  309. start of the second of the two lines and type ^O.
  310.  
  311. >>  Try moving to a line and typing ^O now.
  312.  
  313. You've now learned the most basic way of typing something in
  314. GNOME and correcting errors.  You can delete by words or lines
  315. as well.  Here is a summary of the delete operations:
  316.  
  317.     ^D or <Delete>      delete the character under the cursor
  318.     ^H or <Backspace>   delete the character just before the cursor
  319.  
  320.     <Esc> ^H        kill the word immediately before the cursor
  321.     <Esc> D         kill the next word after the cursor
  322.  
  323.     ^K              kill from the cursor position to end of line
  324.  
  325. Notice that <Delete> and ^D vs <Esc> <Delete> and <Esc> D extend the parallel
  326. started by ^F and <Esc> F.
  327.  
  328. Now suppose you kill something, and then you decide that you want to get 
  329. it back?  Well, whenever you kill something bigger than a character, GNOME 
  330. saves it for you.  To yank it back, use ^Y.  Note that you don't have to 
  331. be in the same place to do ^Y; This is a good way to move text around.  
  332. Also note that the difference between "Killing" and "Deleting" something 
  333. is that "Killed" things can be yanked back, and "Deleted" things cannot.  
  334. Generally, the commands that can destroy a lot of text save it, while the 
  335. ones that attack only one character, or nothing but blank lines and spaces, 
  336. do not save.
  337.  
  338. For instance, postion the cursor at the left end of some line on this screen.
  339.  
  340. >> Do this now, move the cursor and kill that line with ^K.
  341.  
  342. Note that a single ^K kills the contents of the line, and a second
  343. ^K kills the line itself, and make all the other lines move up.  If
  344. you give ^K a repeat count, it kills that many lines AND their contents.
  345.  
  346. The text that has just disappeared is saved so that you can
  347. retrieve it.  To retrieve the last killed text and put it where
  348. the cursor currently is, type ^Y.
  349.  
  350. >> Try it; type ^Y to yank the text back.
  351.  
  352. Think of ^Y as if you were yanking something back that someone took away 
  353. from you.  Notice that if you do several ^K's in a row the text that is 
  354. killed is all saved together so that one ^Y will yank all of the lines.
  355.  
  356. >> Do this now, type ^K several times.
  357.  
  358. Now to retrieve that killed text:
  359.  
  360. >> Type ^Y.  Then move the cursor down a few lines and type ^Y
  361.    again.  You now see how to copy some text.
  362.  
  363. What happens if you have some text that can be yanked back, and then
  364. you kill something else?  ^Y would yank the more recent kill.
  365.  
  366. >> Kill a line, move around, kill another line.
  367.    Then do ^Y to get back the second killed line.
  368.  
  369.  
  370. FILES
  371. -----
  372.  
  373. In order to make the text you edit permanent, you must put it in a file.
  374. Otherwise, it will go away when you leave GNOME.  While you are editing a
  375. file in GNOME, your changes are actually being made to a private "scratch"
  376. copy of the file, a copy that resides in your computer's short-term memory.
  377. The changes don't become permanent until you "save" the file.  This is so
  378. you can have control to avoid leaving a half-changed file around when you
  379. don't want to.
  380.  
  381. If you look near the botton of the screen you will see a line that
  382. looks like this:
  383.  
  384. +* GNOME -- ESC-? for help -- gnome.tut -- File: gnome.tut ------------------
  385.  
  386. Note that GNOME indicates the name of the file you are currently editing.
  387. This is the name of your own temporary copy of the text of the GNOME
  388. tutorial; the file you are now editing.  Whatever file you edit, that
  389. file's name will appear in that precise spot.
  390.  
  391. The commands for finding and saving files are unlike the other commands you
  392. have learned in that they consist of two characters. They both start with the
  393. character Control-X.  There is a whole series of commands that start with
  394. Control-X; many of them have to do with files, buffers, and related things,
  395. and all of them consist of Control-X followed by some other character.  As
  396. with <Esc>, the character is interpreted the same regardless of case.
  397.  
  398. Another thing about the command for finding a file is that you have to say
  399. what file name you want.  We say the command "reads an argument from the
  400. terminal" (in this case, the argument is the name of the file).  After you
  401. type the command
  402.  
  403.      ^X ^V   Visit a file
  404.  
  405. GNOME will ask you for the file name.  GNOME tries to guess what name
  406. you might want, and displays it on the screen.  You can edit it with ^F,
  407. ^B, ^H, ^D, ^K, and so on.  If GNOME can think of several possible
  408. names, it will supply them all.  Only one is displayed at any one time,
  409. but you can scroll through them with ^N and ^P.  You should end the name
  410. with the Return key.  After this command, you will see the contents of the
  411. file on the screen.  You can edit the contents.  If and when you wish to
  412. make the changes permanent, issue the command
  413.  
  414.      ^X S   Save the file
  415.  
  416. A new version of the file, with the same name, will be created.  The old
  417. version is overwritten, and thus destroyed.  If you want to save the
  418. changed version as a new file, keeping the old version, you must either
  419. make a back-up copy of the old file before you save the new one, or write
  420. the new version out from GNOME with a new name.  Issue the command:
  421.  
  422.      ^X ^W   Write the file
  423.  
  424. and GNOME will ask you for the new file name.
  425.  
  426. If you forget to save, edit a different file, and then decide to quit,
  427. GNOME will remind you that you made changes that have not been saved and
  428. then ask you whether you want to discard them.  (If you don't save them,
  429. they will be thrown away.  That might be what you want!)  You should
  430. answer with a "N" to save them or a "Y" to throw the changes away.
  431.  
  432. To make a new file, just edit it "as if" it already existed.  Then start 
  433. typing in the text.  When you ask to "save" the file, GNOME will really 
  434. create the file with the text that you have inserted.  From then on, you 
  435. can consider yourself to be editing an already existing file.
  436.  
  437. It is easy for you to try out editing a file and then continue with the 
  438. tutorial.  Type:
  439.  
  440.      ^X B   Use another buffer
  441.  
  442. followed by a name for the new buffer.  Then type
  443.  
  444.      ^X ^R  Read in a file to edit
  445.  
  446. if you want to edit an existing file, or simply type text in to create a
  447. new file.  When you're done editing, save the file (^X S, or ^X ^W if you
  448. need to give it a file name).  Then use ^X B again, to enter yet another
  449. buffer, and use ^X ^R to read in the file that was saved.  Does it look
  450. like what you wanted it to?  Finally, use ^X B to return to this buffer.
  451. Note the name of this buffer below (the buffer name appears just before the
  452. file name).  You can type it in after issuing the ^X B command, or you can
  453. use ^N and ^P to scroll through the existing buffers until you find the
  454. right one, then press <Return>.
  455.  
  456.  
  457. SEARCHING
  458. ---------
  459.  
  460. GNOME can do searches for strings (these are groups of contiguous
  461. characters or words) either forward through the file or backward
  462. through it.  
  463.  
  464. >> Now type <Esc> S to start a search.  Type the word 'cursor', then <Return>.
  465.  
  466. >> Type <Esc> S <Return> to find the next occurrence of "cursor".
  467.  
  468. >> Type <Esc> R for a Reverse search back towards the top of the file.
  469.  
  470.  
  471. MACROS
  472. ------
  473.  
  474. GNOME has a simple but effective facility for automating typing tasks
  475. through the definition of "macros".  A macro in GNOME is simply a
  476. collection of keystrokes (which may include text and other GNOME
  477. commands).  This collection may be replayed by issuing the "execute
  478. macro" command, ^X E.  To define a macro, type ^X M.  GNOME will continue
  479. normal operation,  but all keystrokes will be recorded in the macro.  When
  480. done, type ^X M again.  GNOME prints a message on the bottom line saying
  481. "[start macro]" or "[end macro]", so you'll know what it's doing.
  482. Only one macro can be defined at any one time, and macros cannot be saved
  483. on disk nor edited.  (This is an area where GNOME could use some
  484. enhancement).
  485.  
  486.  
  487. TEXT REPLACEMENT
  488. ----------------
  489.  
  490. There is no command in GNOME for "search-and-replace".  Instead, this
  491. can easily be done via a simple macro definition.
  492.  
  493. >> Type <Esc> S changed <Return>.  Then type ^X M to start a macro definition.
  494.    Then backspace (^H) over the word "changed", and type "altered".
  495.    Follow with <Esc> S <Return> ^X M.  Now type ^X E to execute the macro.
  496.    Repeat ^X E another time.
  497.  
  498.    Notice how this line has changed: you've replaced
  499.    the word c-h-a-n-g-e-d with "altered" wherever it occurs
  500.    after the cursor, such as here: "changed".
  501.  
  502. Notice that the macro definition had the search FOLLOWING the editing.
  503. This allows you to examine the found text and decide whether you really
  504. want to change that specific occurrence.  If you do, press ^X E again.
  505. If not, press anything else.  If you are sure you want to do a global
  506. search and replace without checking, you can precede ^X E with a large
  507. numerical argument, e.g., type <Esc> 999 ^X E.
  508.  
  509.  
  510. MODE LINE
  511. ---------
  512.  
  513. The bottom line of the screen is known as the communications line.  This
  514. is where GNOME interactively communicates with you.  You have already
  515. seen how GNOME prompts you for information (like when searching).  GNOME
  516. can also report things to you as well.
  517.  
  518. >> Type ^X = and see what you get in the communications line.
  519.  
  520. The line immediately above the communications line is called the MODE
  521. LINE. The mode line says something like
  522.  
  523. +* GNOME -- ESC-? for help -- gnome.tut -- File: gnome.tut ------------------
  524.  
  525. This is a very useful "information" line.
  526.  
  527. The plus (+) means that you can change the text.  If you press ^X ^E,
  528. you will enter "view-only mode", where you cannot change the file by
  529. mistake, nor can you save it.
  530.  
  531. The star (*) means that you have made changes to the text.  Right after
  532. you read in or save a file, there is no star.
  533.  
  534. The buffer name is the name GNOME gave to the buffer, and it is usually
  535. related to the filename. You already know what the filename means -- it
  536. is the name used by the operating system to identify the file you have
  537. edited, when stored on disk.
  538.  
  539.  
  540. WORD WRAP
  541. ---------
  542.  
  543. A mode which is very useful, especially for editing English text, is "wrap"
  544. (or "fill") mode.  When this mode is on, GNOME breaks the line in between
  545. words automatically whenever the line gets too long.  You can turn this
  546. mode on by typing (for example) <Esc> 65 ^X R.  This means: set the right
  547. margin to 65 columns from the left end of the screen.  When the mode is on,
  548. you can turn it off by doing ^X R by itself.
  549.  
  550. If you make changes in your text, you may want to reformat a paragraph to
  551. fit the set margin again.  Put the cursor ANYWHERE in the paragraph and
  552. press ^X F.
  553.  
  554. >> Type "<Esc> 20 ^X R" now.  Then insert a line of "asdf " over 
  555.    again until you see it divide into two lines.  You must put in spaces 
  556.    between them because Auto Fill breaks lines only at spaces.
  557.  
  558.  
  559. GETTING MORE HELP
  560. -----------------
  561.  
  562. In this tutorial we have tried to supply just enough information to
  563. get you started using GNOME.  There is so much available in GNOME that
  564. it would be impossible to explain it all here.  However, you may want
  565. to learn more about GNOME since it has numerous desirable features
  566. that you don't know about yet.
  567.  
  568. The on-line help feature is brief but complete.  Type <Esc> ?  (or <Esc>
  569. <Esc>).  There are also options available through the command-line that
  570. launches GNOME from your operating system.  Type "gnome -h" (at the
  571. operating system prompt) for a list.
  572.  
  573. >> Type <Esc> ? right now.  Press ^G to return to full-screen editing.
  574.  
  575.  
  576. CONCLUSION
  577. ----------
  578.  
  579. Remember, to exit use ^C.
  580.  
  581. This tutorial is meant to be understandable to all new users, so if
  582. you found something unclear, don't sit and blame yourself - complain!
  583.  
  584. You'll probably find that if you use GNOME for a few days you won't be able
  585. to give it up.  Initially it may give you trouble.  But remember that this
  586. is the case with any editor, especially one that is as versatile as GNOME.
  587.  
  588.  
  589. Acknowledgements
  590. ----------------
  591.  
  592. GNOME was made possible by the placement in the public domain of the
  593. source code for "microEMACS" by Dave Conroy.
  594.  
  595. This is a modified version of the "microEMACS Tutorial" by Dan Lawrance and
  596. Dana Hoggatt.  That document was in turn a modified version of the "JOVE
  597. Tutorial" by Jonathan Payne, which in turn was based on the tutorial
  598. "Teach-Emacs" from MIT as modified by Steve Zimmerman.
  599.  
  600. This document was last updated on 880311 by Moshe Braner.
  601.  
  602.  
  603.